summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-09-04 03:02:02 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-10-06 21:00:54 +0200
commitaedd739631efcebf42a1dae601096c10b99d9cd5 (patch)
tree5c2fdfeba38020adbd00b97208f7dbbe260e015f
parentGeneral: address feedback (diff)
downloadyuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.tar
yuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.tar.gz
yuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.tar.bz2
yuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.tar.lz
yuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.tar.xz
yuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.tar.zst
yuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.zip
-rw-r--r--src/video_core/engines/maxwell_dma.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_dma.cpp b/src/video_core/engines/maxwell_dma.cpp
index bcffd1862..3909d36c1 100644
--- a/src/video_core/engines/maxwell_dma.cpp
+++ b/src/video_core/engines/maxwell_dma.cpp
@@ -133,7 +133,6 @@ void MaxwellDMA::CopyBlockLinearToPitch() {
}
// Deswizzle the input and copy it over.
- UNIMPLEMENTED_IF(regs.launch_dma.remap_enable != 0);
const Parameters& src_params = regs.src_params;
const u32 num_remap_components = regs.remap_const.num_dst_components_minus_one + 1;
@@ -182,7 +181,6 @@ void MaxwellDMA::CopyBlockLinearToPitch() {
void MaxwellDMA::CopyPitchToBlockLinear() {
UNIMPLEMENTED_IF_MSG(regs.dst_params.block_size.width != 0, "Block width is not one");
UNIMPLEMENTED_IF(regs.dst_params.layer != 0);
- UNIMPLEMENTED_IF(regs.launch_dma.remap_enable != 0);
const bool is_remapping = regs.launch_dma.remap_enable != 0;
const u32 num_remap_components = regs.remap_const.num_dst_components_minus_one + 1;